home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gcc_260.zip / gcc_260 / gcc.info-4 (.txt) < prev    next >
GNU Info File  |  1994-07-14  |  51KB  |  949 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.54 from the input
  2. file gcc.texi.
  3.    This file documents the use and the internals of the GNU compiler.
  4.    Published by the Free Software Foundation 675 Massachusetts Avenue
  5. Cambridge, MA 02139 USA
  6.    Copyright (C) 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
  7.    Permission is granted to make and distribute verbatim copies of this
  8. manual provided the copyright notice and this permission notice are
  9. preserved on all copies.
  10.    Permission is granted to copy and distribute modified versions of
  11. this manual under the conditions for verbatim copying, provided also
  12. that the sections entitled "GNU General Public License" and "Protect
  13. Your Freedom--Fight `Look And Feel'" are included exactly as in the
  14. original, and provided that the entire resulting derived work is
  15. distributed under the terms of a permission notice identical to this
  16.    Permission is granted to copy and distribute translations of this
  17. manual into another language, under the above conditions for modified
  18. versions, except that the sections entitled "GNU General Public
  19. License" and "Protect Your Freedom--Fight `Look And Feel'", and this
  20. permission notice, may be included in translations approved by the Free
  21. Software Foundation instead of in the original English.
  22. File: gcc.info,  Node: M88K Options,  Next: RS/6000 and PowerPC Options,  Prev: ARM Options,  Up: Submodel Options
  23. M88K Options
  24. ------------
  25.    These `-m' options are defined for Motorola 88k architectures:
  26. `-m88000'
  27.      Generate code that works well on both the m88100 and the m88110.
  28. `-m88100'
  29.      Generate code that works best for the m88100, but that also runs
  30.      on the m88110.
  31. `-m88110'
  32.      Generate code that works best for the m88110, and may not run on
  33.      the m88100.
  34. `-mbig-pic'
  35.      Obsolete option to be removed from the next revision.  Use `-fPIC'.
  36. `-midentify-revision'
  37.      Include an `ident' directive in the assembler output recording the
  38.      source file name, compiler name and version, timestamp, and
  39.      compilation flags used.
  40. `-mno-underscores'
  41.      In assembler output, emit symbol names without adding an underscore
  42.      character at the beginning of each name.  The default is to use an
  43.      underscore as prefix on each name.
  44. `-mocs-debug-info'
  45. `-mno-ocs-debug-info'
  46.      Include (or omit) additional debugging information (about
  47.      registers used in each stack frame) as specified in the 88open
  48.      Object Compatibility Standard, "OCS".  This extra information
  49.      allows debugging of code that has had the frame pointer
  50.      eliminated.  The default for DG/UX, SVr4, and Delta 88 SVr3.2 is
  51.      to include this information; other 88k configurations omit this
  52.      information by default.
  53. `-mocs-frame-position'
  54.      When emitting COFF debugging information for automatic variables
  55.      and parameters stored on the stack, use the offset from the
  56.      canonical frame address, which is the stack pointer (register 31)
  57.      on entry to the function.  The DG/UX, SVr4, Delta88 SVr3.2, and
  58.      BCS configurations use `-mocs-frame-position'; other 88k
  59.      configurations have the default `-mno-ocs-frame-position'.
  60. `-mno-ocs-frame-position'
  61.      When emitting COFF debugging information for automatic variables
  62.      and parameters stored on the stack, use the offset from the frame
  63.      pointer register (register 30).  When this option is in effect,
  64.      the frame pointer is not eliminated when debugging information is
  65.      selected by the -g switch.
  66. `-moptimize-arg-area'
  67. `-mno-optimize-arg-area'
  68.      Control how function arguments are stored in stack frames.
  69.      `-moptimize-arg-area' saves space by optimizing them, but this
  70.      conflicts with the 88open specifications.  The opposite
  71.      alternative, `-mno-optimize-arg-area', agrees with 88open
  72.      standards.  By default GNU CC does not optimize the argument area.
  73. `-mshort-data-NUM'
  74.      Generate smaller data references by making them relative to `r0',
  75.      which allows loading a value using a single instruction (rather
  76.      than the usual two).  You control which data references are
  77.      affected by specifying NUM with this option.  For example, if you
  78.      specify `-mshort-data-512', then the data references affected are
  79.      those involving displacements of less than 512 bytes.
  80.      `-mshort-data-NUM' is not effective for NUM greater than 64k.
  81. `-mserialize-volatile'
  82. `-mno-serialize-volatile'
  83.      Do, or do not, generate code to guarantee sequential consistency of
  84.      volatile memory references.
  85.      GNU CC always guarantees consistency by default.
  86.      The order of memory references made by the m88110 processor does
  87.      not always match the order of the instructions requesting those
  88.      references.  In particular, a load instruction may execute before
  89.      a preceding store instruction.  Such reordering violates
  90.      sequential consistency of volatile memory references, when there
  91.      are multiple processors.
  92.      The extra code generated to guarantee consistency may affect the
  93.      performance of your application.  If you know that you can safely
  94.      forgo this guarantee, you may use the option
  95.      `-mno-serialize-volatile'.
  96. `-msvr4'
  97. `-msvr3'
  98.      Turn on (`-msvr4') or off (`-msvr3') compiler extensions related
  99.      to System V release 4 (SVr4).  This controls the following:
  100.        1. Which variant of the assembler syntax to emit (which you can
  101.           select independently using `-mversion-03.00').
  102.        2. `-msvr4' makes the C preprocessor recognize `#pragma weak'
  103.           that is used on System V release 4.
  104.        3. `-msvr4' makes GNU CC issue additional declaration directives
  105.           used in SVr4.
  106.      `-msvr3' is the default for all m88k configurations except the
  107.      SVr4 configuration.
  108. `-mversion-03.00'
  109.      In the DG/UX configuration, there are two flavors of SVr4.  This
  110.      option modifies `-msvr4' to select whether the hybrid-COFF or
  111.      real-ELF flavor is used.  All other configurations ignore this
  112.      option.
  113. `-mno-check-zero-division'
  114. `-mcheck-zero-division'
  115.      Early models of the 88k architecture had problems with division by
  116.      zero; in particular, many of them didn't trap.  Use these options
  117.      to avoid including (or to include explicitly) additional code to
  118.      detect division by zero and signal an exception.  All GNU CC
  119.      configurations for the 88k use `-mcheck-zero-division' by default.
  120. `-muse-div-instruction'
  121.      Do not emit code to check both the divisor and dividend when doing
  122.      signed integer division to see if either is negative, and adjust
  123.      the signs so the divide is done using non-negative numbers.
  124.      Instead, rely on the operating system to calculate the correct
  125.      value when the `div' instruction traps.  This results in different
  126.      behavior when the most negative number is divided by -1, but is
  127.      useful when most or all signed integer divisions are done with
  128.      positive numbers.
  129. `-mtrap-large-shift'
  130. `-mhandle-large-shift'
  131.      Include code to detect bit-shifts of more than 31 bits;
  132.      respectively, trap such shifts or emit code to handle them
  133.      properly.  By default GNU CC makes no special provision for large
  134.      bit shifts.
  135. `-mwarn-passed-structs'
  136.      Warn when a function passes a struct as an argument or result.
  137.      Structure-passing conventions have changed during the evolution of
  138.      the C language, and are often the source of portability problems.
  139.      By default, GNU CC issues no such warning.
  140. File: gcc.info,  Node: RS/6000 and PowerPC Options,  Next: RT Options,  Prev: M88K Options,  Up: Submodel Options
  141. IBM RS/6000 and PowerPC Options
  142. -------------------------------
  143.    These `-m' options are defined for the IBM RS/6000 and PowerPC:
  144. `-mpower'
  145. `-mno-power'
  146. `-mpower2'
  147. `-mno-power2'
  148. `-mpowerpc'
  149. `-mno-powerpc'
  150. `-mpowerpc-gpopt'
  151. `-mno-powerpc-gpopt'
  152. `-mpowerpc-gfxopt'
  153. `-mno-powerpc-gfxopt'
  154.      GNU CC supports two related instruction set architectures for the
  155.      RS/6000 and PowerPC.  The "POWER" instruction set are those
  156.      instructions supported by the `rios' chip set used in the original
  157.      RS/6000 systems and the "PowerPC" instruction set is the
  158.      architecture of the Motorola MPC6xx microprocessors.  The PowerPC
  159.      architecture defines 64-bit instructions, but they are not
  160.      supported by any current processors.
  161.      Neither architecture is a subset of the other.  However there is a
  162.      large common subset of instructions supported by both.  An MQ
  163.      register is included in processors supporting the POWER
  164.      architecture.
  165.      You use these options to specify which instructions are available
  166.      on the processor you are using.  The default value of these
  167.      options is determined when configuring GNU CC.  Specifying the
  168.      `-mcpu=CPU_TYPE' overrides the specification of these options.  We
  169.      recommend you use that option rather than these.
  170.      The `-mpower' option allows GNU CC to generate instructions that
  171.      are found only in the POWER architecture and to use the MQ
  172.      register.  Specifying `-mpower2' implies `-power' and also allows
  173.      GNU CC to generate instructions that are present in the POWER2
  174.      architecture but not the original POWER architecture.
  175.      The `-mpowerpc' option allows GNU CC to generate instructions that
  176.      are found only in the 32-bit subset of the PowerPC architecture.
  177.      Specifying `-mpowerpc-gpopt' implies `-mpowerpc' and also allows
  178.      GNU CC to use the optional PowerPC architecture instructions in the
  179.      General Purpose group, including floating-point square root.
  180.      Specifying `-mpowerpc-gfxopt' implies `-mpowerpc' and also allows
  181.      GNU CC to use the optional PowerPC architecture instructions in
  182.      the Graphics group, including floating-point select.
  183.      If you specify both `-mno-power' and `-mno-powerpc', GNU CC will
  184.      use only the instructions in the common subset of both
  185.      architectures plus some special AIX common-mode calls, and will
  186.      not use the MQ register.  Specifying both `-mpower' and `-mpowerpc'
  187.      permits GNU CC to use any instruction from either architecture and
  188.      to allow use of the MQ register; specify this for the Motorola
  189.      MPC601.
  190. `-mnew-mnemonics'
  191. `-mold-mnemonics'
  192.      Select which mnemonics to use in the generated assembler code.
  193.      `-mnew-mnemonics' requests output that uses the assembler mnemonics
  194.      defined for the PowerPC architecture, while `-mold-mnemonics'
  195.      requests the assembler mnemonics defined for the POWER
  196.      architecture.  Instructions defined in only one architecture have
  197.      only one mnemonic; GNU CC uses that mnemonic irrespective of which
  198.      of thse options is specified.
  199.      PowerPC assemblers support both the old and new mnemonics, as will
  200.      later POWER assemblers.  Current POWER assemblers only support the
  201.      old mnemonics.  Specify `-mnew-mnemonics' if you have an assembler
  202.      that supports them, otherwise specify `-mold-mnemonics'.
  203.      The default value of these options depends on how GNU CC was
  204.      configured.  Specifing `-mcpu=CPU_TYPE' sometimes overrides the
  205.      value of these option.  Unless you are building a cross-compiler,
  206.      you should normally not specify either `-mnew-mnemonics' or
  207.      `-mold-mnemonics', but should instead accept the default.
  208. `-mcpu=CPU_TYPE'
  209.      Set architecture type, register usage, choice of mnemonics, and
  210.      instruction scheduling parameters for machine type CPU_TYPE.  By
  211.      default, CPU_TYPE is the target system defined when GNU CC was
  212.      configured.  Supported values for CPU_TYPE are `rios1', `rios2',
  213.      `rsc', `601', `603', `604', `power', `powerpc', and `common'.
  214.      `-mcpu=power' and `-mcpu=powerpc' specify generic POWER and pure
  215.      PowerPC (i.e., not MPC601) architecture machine types, with an
  216.      appropriate, generic processor model assumed for scheduling
  217.      purposes.
  218.      Specifying `-mcpu=rios1', `-mcpu=rios2', `-mcpu=rsc', or
  219.      `-mcpu=power' enables the `-mpower' option and disables the
  220.      `-mpowerpc' option; `-mcpu=601' enables both the `-mpower' and
  221.      `-mpowerpc' options; `-mcpu=603', `-mcpu=604', and `-mcpu=powerpc'
  222.      enable the `-mpowerpc' option and disable the `-mpower' option;
  223.      `-mcpu=common' disables both the `-mpower' and `-mpowerpc' options.
  224.      To generate code that will operate on all members of the RS/6000
  225.      and PowerPC families, specify `-mcpu=common'.  In that case, GNU CC
  226.      will use only the instructions in the common subset of both
  227.      architectures plus some special AIX common-mode calls, and will
  228.      not use the MQ register.  GNU CC assumes a generic processor model
  229.      for scheduling purposes.
  230.      Specifying `-mcpu=rios1', `-mcpu=rios2', `-mcpu=rsc', or
  231.      `-mcpu=power' also disables the `new-mnemonics' option.
  232.      Specifying `-mcpu=601', `-mcpu=603', `-mcpu=604', or
  233.      `-mcpu=powerpc' also enables the `new-mnemonics' option.
  234. `-mfull-toc'
  235. `-mno-fp-in-toc'
  236. `-mno-sum-in-toc'
  237. `-mminimal-toc'
  238.      Modify generation of the TOC (Table Of Contents), which is created
  239.      for every executable file.  The `-mfull-toc' option is selected by
  240.      default.  In that case, GNU CC will allocate at least one TOC
  241.      entry for each unique non-automatic variable reference in your
  242.      program.  GNU CC will also place floating-point constants in the
  243.      TOC.  However, only 16,384 entries are available in the TOC.
  244.      If you receive a linker error message that saying you have
  245.      overflowed the available TOC space, you can reduce the amount of
  246.      TOC space used with the `-mno-fp-in-toc' and `-mno-sum-in-toc'
  247.      options.  `-mno-fp-in-toc' prevents GNU CC from putting
  248.      floating-point constants in the TOC and `-mno-sum-in-toc' forces
  249.      GNU CC to generate code to calculate the sum of an address and a
  250.      constant at run-time instead of putting that sum into the TOC.
  251.      You may specify one or both of these options.  Each causes GNU CC
  252.      to produce very slightly slower and larger code at the expense of
  253.      conserving TOC space.
  254.      If you still run out of space in the TOC even when you specify
  255.      both of these options, specify `-mminimal-toc' instead.  This
  256.      option causes GNU CC to make only one TOC entry for every file.
  257.      When you specify this option, GNU CC will produce code that is
  258.      slower and larger but which uses extremely little TOC space.  You
  259.      may wish to use this option only on files that contain less
  260.      frequently executed code.
  261. File: gcc.info,  Node: RT Options,  Next: MIPS Options,  Prev: RS/6000 and PowerPC Options,  Up: Submodel Options
  262. IBM RT Options
  263. --------------
  264.    These `-m' options are defined for the IBM RT PC:
  265. `-min-line-mul'
  266.      Use an in-line code sequence for integer multiplies.  This is the
  267.      default.
  268. `-mcall-lib-mul'
  269.      Call `lmul$$' for integer multiples.
  270. `-mfull-fp-blocks'
  271.      Generate full-size floating point data blocks, including the
  272.      minimum amount of scratch space recommended by IBM.  This is the
  273.      default.
  274. `-mminimum-fp-blocks'
  275.      Do not include extra scratch space in floating point data blocks.
  276.      This results in smaller code, but slower execution, since scratch
  277.      space must be allocated dynamically.
  278. `-mfp-arg-in-fpregs'
  279.      Use a calling sequence incompatible with the IBM calling
  280.      convention in which floating point arguments are passed in
  281.      floating point registers.  Note that `varargs.h' and `stdargs.h'
  282.      will not work with floating point operands if this option is
  283.      specified.
  284. `-mfp-arg-in-gregs'
  285.      Use the normal calling convention for floating point arguments.
  286.      This is the default.
  287. `-mhc-struct-return'
  288.      Return structures of more than one word in memory, rather than in a
  289.      register.  This provides compatibility with the MetaWare HighC (hc)
  290.      compiler.  Use the option `-fpcc-struct-return' for compatibility
  291.      with the Portable C Compiler (pcc).
  292. `-mnohc-struct-return'
  293.      Return some structures of more than one word in registers, when
  294.      convenient.  This is the default.  For compatibility with the
  295.      IBM-supplied compilers, use the option `-fpcc-struct-return' or the
  296.      option `-mhc-struct-return'.
  297. File: gcc.info,  Node: MIPS Options,  Next: i386 Options,  Prev: RT Options,  Up: Submodel Options
  298. MIPS Options
  299. ------------
  300.    These `-m' options are defined for the MIPS family of computers:
  301. `-mcpu=CPU TYPE'
  302.      Assume the defaults for the machine type CPU TYPE when scheduling
  303.      instructions.  The choices for CPU TYPE are `r2000', `r3000',
  304.      `r4000', `r4400', `r4600', and `r6000'.  While picking a specific
  305.      CPU TYPE will schedule things appropriately for that particular
  306.      chip, the compiler will not generate any code that does not meet
  307.      level 1 of the MIPS ISA (instruction set architecture) without the
  308.      `-mips2' or `-mips3' switches being used.
  309. `-mips1'
  310.      Issue instructions from level 1 of the MIPS ISA.  This is the
  311.      default.  `r3000' is the default CPU TYPE at this ISA level.
  312. `-mips2'
  313.      Issue instructions from level 2 of the MIPS ISA (branch likely,
  314.      square root instructions).  `r6000' is the default CPU TYPE at this
  315.      ISA level.
  316. `-mips3'
  317.      Issue instructions from level 3 of the MIPS ISA (64 bit
  318.      instructions).  `r4000' is the default CPU TYPE at this ISA level.
  319. `-mfp32'
  320.      Assume that 32 32-bit floating point registers are available.
  321.      This is the default.
  322. `-mfp64'
  323.      Assume that 32 64-bit floating point registers are available.
  324.      This is the default when the `-mips3' option is used.
  325. `-mgp32'
  326.      Assume that 32 32-bit general purpose registers are available.
  327.      This is the default.
  328. `-mgp64'
  329.      Assume that 32 64-bit general purpose registers are available.
  330.      This is the default when the `-mips3' option is used.
  331. `-mint64'
  332.      Types long and int are 64 bits.  This works only if `-mips3' is
  333.      also specified.
  334. `-mlong64'
  335.      Type long is 64 bits, and type int is 32 bits.  This works only if
  336.      `-mips3' is also specified.
  337. `-mmips-as'
  338.      Generate code for the MIPS assembler, and invoke `mips-tfile' to
  339.      add normal debug information.  This is the default for all
  340.      platforms except for the OSF/1 reference platform, using the
  341.      OSF/rose object format.  If the either of the `-gstabs' or
  342.      `-gstabs+' switches are used, the `mips-tfile' program will
  343.      encapsulate the stabs within MIPS ECOFF.
  344. `-mgas'
  345.      Generate code for the GNU assembler.  This is the default on the
  346.      OSF/1 reference platform, using the OSF/rose object format.
  347. `-mrnames'
  348. `-mno-rnames'
  349.      The `-mrnames' switch says to output code using the MIPS software
  350.      names for the registers, instead of the hardware names (ie, A0
  351.      instead of $4).  The only known assembler that supports this option
  352.      is the Algorithmics assembler.
  353. `-mgpopt'
  354. `-mno-gpopt'
  355.      The `-mgpopt' switch says to write all of the data declarations
  356.      before the instructions in the text section, this allows the MIPS
  357.      assembler to generate one word memory references instead of using
  358.      two words for short global or static data items.  This is on by
  359.      default if optimization is selected.
  360. `-mstats'
  361. `-mno-stats'
  362.      For each non-inline function processed, the `-mstats' switch
  363.      causes the compiler to emit one line to the standard error file to
  364.      print statistics about the program (number of registers saved,
  365.      stack size, etc.).
  366. `-mmemcpy'
  367. `-mno-memcpy'
  368.      The `-mmemcpy' switch makes all block moves call the appropriate
  369.      string function (`memcpy' or `bcopy') instead of possibly
  370.      generating inline code.
  371. `-mmips-tfile'
  372. `-mno-mips-tfile'
  373.      The `-mno-mips-tfile' switch causes the compiler not postprocess
  374.      the object file with the `mips-tfile' program, after the MIPS
  375.      assembler has generated it to add debug support.  If `mips-tfile'
  376.      is not run, then no local variables will be available to the
  377.      debugger.  In addition, `stage2' and `stage3' objects will have
  378.      the temporary file names passed to the assembler embedded in the
  379.      object file, which means the objects will not compare the same.
  380.      The `-mno-mips-tfile' switch should only be used when there are
  381.      bugs in the `mips-tfile' program that prevents compilation.
  382. `-msoft-float'
  383.      Generate output containing library calls for floating point.
  384.      *Warning:* the requisite libraries are not part of GNU CC.
  385.      Normally the facilities of the machine's usual C compiler are
  386.      used, but this can't be done directly in cross-compilation.  You
  387.      must make your own arrangements to provide suitable library
  388.      functions for cross-compilation.
  389. `-mhard-float'
  390.      Generate output containing floating point instructions.  This is
  391.      the default if you use the unmodified sources.
  392. `-mabicalls'
  393. `-mno-abicalls'
  394.      Emit (or do not emit) the pseudo operations `.abicalls',
  395.      `.cpload', and `.cprestore' that some System V.4 ports use for
  396.      position independent code.
  397. `-mlong-calls'
  398. `-mno-long-calls'
  399.      Do all calls with the `JALR' instruction, which requires loading
  400.      up a function's address into a register before the call.  You need
  401.      to use this switch, if you call outside of the current 512
  402.      megabyte segment to functions that are not through pointers.
  403. `-mhalf-pic'
  404. `-mno-half-pic'
  405.      Put pointers to extern references into the data section and load
  406.      them up, rather than put the references in the text section.
  407. `-membedded-pic'
  408. `-mno-embedded-pic'
  409.      Generate PIC code suitable for some embedded systems.  All calls
  410.      are made using PC relative address, and all data is addressed
  411.      using the $gp register.  This requires GNU as and GNU ld which do
  412.      most of the work.
  413. `-membedded-data'
  414. `-mno-embedded-data'
  415.      Allocate variables to the read-only data section first if
  416.      possible, then next in the small data section if possible,
  417.      otherwise in data.  This gives slightly slower code than the
  418.      default, but reduces the amount of RAM required when executing,
  419.      and thus may be preferred for some embedded systems.
  420. `-G NUM'
  421.      Put global and static items less than or equal to NUM bytes into
  422.      the small data or bss sections instead of the normal data or bss
  423.      section.  This allows the assembler to emit one word memory
  424.      reference instructions based on the global pointer (GP or $28),
  425.      instead of the normal two words used.  By default, NUM is 8 when
  426.      the MIPS assembler is used, and 0 when the GNU assembler is used.
  427.      The `-G NUM' switch is also passed to the assembler and linker.
  428.      All modules should be compiled with the same `-G NUM' value.
  429. `-nocpp'
  430.      Tell the MIPS assembler to not run it's preprocessor over user
  431.      assembler files (with a `.s' suffix) when assembling them.
  432.    These options are defined by the macro `TARGET_SWITCHES' in the
  433. machine description.  The default for the options is also defined by
  434. that macro, which enables you to change the defaults.
  435. File: gcc.info,  Node: i386 Options,  Next: HPPA Options,  Prev: MIPS Options,  Up: Submodel Options
  436. Intel 386 Options
  437. -----------------
  438.    These `-m' options are defined for the i386 family of computers:
  439. `-m486'
  440. `-mno-486'
  441.      Control whether or not code is optimized for a 486 instead of an
  442.      386.  Code generated for an 486 will run on a 386 and vice versa.
  443. `-msoft-float'
  444.      Generate output containing library calls for floating point.
  445.      *Warning:* the requisite libraries are not part of GNU CC.
  446.      Normally the facilities of the machine's usual C compiler are
  447.      used, but this can't be done directly in cross-compilation.  You
  448.      must make your own arrangements to provide suitable library
  449.      functions for cross-compilation.
  450.      On machines where a function returns floating point results in the
  451.      80387 register stack, some floating point opcodes may be emitted
  452.      even if `-msoft-float' is used.
  453. `-mno-fp-ret-in-387'
  454.      Do not use the FPU registers for return values of functions.
  455.      The usual calling convention has functions return values of types
  456.      `float' and `double' in an FPU register, even if there is no FPU.
  457.      The idea is that the operating system should emulate an FPU.
  458.      The option `-mno-fp-ret-in-387' causes such values to be returned
  459.      in ordinary CPU registers instead.
  460. `-mno-fancy-math-387'
  461.      Some 387 emulators do not support the `sin', `cos' and `sqrt'
  462.      instructions for the 387.  Specify this option to avoid generating
  463.      those instructions. This option is the default on FreeBSD.
  464. File: gcc.info,  Node: HPPA Options,  Next: Intel 960 Options,  Prev: i386 Options,  Up: Submodel Options
  465. HPPA Options
  466. ------------
  467.    These `-m' options are defined for the HPPA family of computers:
  468. `-mpa-risc-1-0'
  469.      Generate code for a PA 1.0 processor.
  470. `-mpa-risc-1-1'
  471.      Generate code for a PA 1.1 processor.
  472. `-mjump-in-delay'
  473.      Fill delay slots of function calls with unconditional jump
  474.      instructions by modifying the return pointer for the function call
  475.      to be the target of the conditional jump.
  476. `-mlong-calls'
  477.      Generate code which allows calls to functions greater than 256k
  478.      away from the caller when the caller and callee are in the same
  479.      source file.  Do not turn this option on unless code refuses to
  480.      link with "branch out of range errors" from the linker.
  481. `-mdisable-fpregs'
  482.      Prevent floating point registers from being used in any manner.
  483.      This is necessary for compiling kernels which perform lazy context
  484.      switching of floating point registers.  If you use this option and
  485.      attempt to perform floating point operations, the compiler will
  486.      abort.
  487. `-mdisable-indexing'
  488.      Prevent the compiler from using indexing address modes.  This
  489.      avoids some rather obscure problems when compiling MIG generated
  490.      code under MACH.
  491. `-mportable-runtime'
  492.      Use the portable calling conventions proposed by HP for ELF
  493.      systems.  Note this option also enables `-mlong-calls'.
  494. `-mgas'
  495.      Unable the use of assembler directives only GAS understands.
  496. File: gcc.info,  Node: Intel 960 Options,  Next: DEC Alpha Options,  Prev: HPPA Options,  Up: Submodel Options
  497. Intel 960 Options
  498. -----------------
  499.    These `-m' options are defined for the Intel 960 implementations:
  500. `-mCPU TYPE'
  501.      Assume the defaults for the machine type CPU TYPE for some of the
  502.      other options, including instruction scheduling, floating point
  503.      support, and addressing modes.  The choices for CPU TYPE are `ka',
  504.      `kb', `mc', `ca', `cf', `sa', and `sb'.  The default is `kb'.
  505. `-mnumerics'
  506. `-msoft-float'
  507.      The `-mnumerics' option indicates that the processor does support
  508.      floating-point instructions.  The `-msoft-float' option indicates
  509.      that floating-point support should not be assumed.
  510. `-mleaf-procedures'
  511. `-mno-leaf-procedures'
  512.      Do (or do not) attempt to alter leaf procedures to be callable
  513.      with the `bal' instruction as well as `call'.  This will result in
  514.      more efficient code for explicit calls when the `bal' instruction
  515.      can be substituted by the assembler or linker, but less efficient
  516.      code in other cases, such as calls via function pointers, or using
  517.      a linker that doesn't support this optimization.
  518. `-mtail-call'
  519. `-mno-tail-call'
  520.      Do (or do not) make additional attempts (beyond those of the
  521.      machine-independent portions of the compiler) to optimize
  522.      tail-recursive calls into branches.  You may not want to do this
  523.      because the detection of cases where this is not valid is not
  524.      totally complete.  The default is `-mno-tail-call'.
  525. `-mcomplex-addr'
  526. `-mno-complex-addr'
  527.      Assume (or do not assume) that the use of a complex addressing
  528.      mode is a win on this implementation of the i960.  Complex
  529.      addressing modes may not be worthwhile on the K-series, but they
  530.      definitely are on the C-series.  The default is currently
  531.      `-mcomplex-addr' for all processors except the CB and CC.
  532. `-mcode-align'
  533. `-mno-code-align'
  534.      Align code to 8-byte boundaries for faster fetching (or don't
  535.      bother).  Currently turned on by default for C-series
  536.      implementations only.
  537. `-mic-compat'
  538. `-mic2.0-compat'
  539. `-mic3.0-compat'
  540.      Enable compatibility with iC960 v2.0 or v3.0.
  541. `-masm-compat'
  542. `-mintel-asm'
  543.      Enable compatibility with the iC960 assembler.
  544. `-mstrict-align'
  545. `-mno-strict-align'
  546.      Do not permit (do permit) unaligned accesses.
  547. `-mold-align'
  548.      Enable structure-alignment compatibility with Intel's gcc release
  549.      version 1.3 (based on gcc 1.37).  Currently this is buggy in that
  550.      `#pragma align 1' is always assumed as well, and cannot be turned
  551.      off.
  552. File: gcc.info,  Node: DEC Alpha Options,  Next: Clipper Options,  Prev: Intel 960 Options,  Up: Submodel Options
  553. DEC Alpha Options
  554. -----------------
  555.    These `-m' options are defined for the DEC Alpha implementations:
  556. `-mno-soft-float'
  557. `-msoft-float'
  558.      Use (do not use) the hardware floating-point instructions for
  559.      floating-point operations.  When `-msoft-float' is specified,
  560.      functions in `libgcc1.c' will be used to perform floating-point
  561.      operations.  Unless they are replaced by routines that emulate the
  562.      floating-point operations, or compiled in such a way as to call
  563.      such emulations routines, these routines will issue floating-point
  564.      operations.   If you are compiling for an Alpha without
  565.      floating-point operations, you must ensure that the library is
  566.      built so as not to call them.
  567.      Note that Alpha implementations without floating-point operations
  568.      are required to have floating-point registers.
  569. `-mfp-reg'
  570. `-mno-fp-regs'
  571.      Generate code that uses (does not use) the floating-point register
  572.      set.  `-mno-fp-regs' implies `-msoft-float'.  If the floating-point
  573.      register set is not used, floating point operands are passed in
  574.      integer registers as if they were integers and floating-point
  575.      results are passed in $0 instead of $f0.  This is a non-standard
  576.      calling sequence, so any function with a floating-point argument
  577.      or return value called by code compiled with `-mno-fp-regs' must
  578.      also be compiled with that option.
  579.      A typical use of this option is building a kernel that does not
  580.      use, and hence need not save and restore, any floating-point
  581.      registers.
  582. File: gcc.info,  Node: Clipper Options,  Next: H8/300 Options,  Prev: DEC Alpha Options,  Up: Submodel Options
  583. Clipper Options
  584. ---------------
  585.    These `-m' options are defined for the Clipper implementations:
  586. `-mc300'
  587.      Produce code for a C300 Clipper processor. This is the default.
  588. `-mc400'
  589.      Produce code for a C400 Clipper processor i.e. use floting point
  590.      registers f8..f15.
  591. File: gcc.info,  Node: H8/300 Options,  Next: System V Options,  Prev: Clipper Options,  Up: Submodel Options
  592. H8/300 Options
  593. --------------
  594.    These `-m' options are defined for the H8/300 implementations:
  595. `-mrelax'
  596.      Shorten some address references at link time, when possible; uses
  597.      the linker option `-relax'.  *Note `ld' and the H8/300:
  598.      (ld.info)H8/300, for a fuller description.
  599. `-mh'
  600.      Generate code for the H8/300H.
  601. File: gcc.info,  Node: System V Options,  Prev: H8/300 Options,  Up: Submodel Options
  602. Options for System V
  603. --------------------
  604.    These additional options are available on System V Release 4 for
  605. compatibility with other compilers on those systems:
  606. `-Qy'
  607.      Identify the versions of each tool used by the compiler, in a
  608.      `.ident' assembler directive in the output.
  609. `-Qn'
  610.      Refrain from adding `.ident' directives to the output file (this is
  611.      the default).
  612. `-YP,DIRS'
  613.      Search the directories DIRS, and no others, for libraries
  614.      specified with `-l'.
  615. `-Ym,DIR'
  616.      Look in the directory DIR to find the M4 preprocessor.  The
  617.      assembler uses this option.
  618. File: gcc.info,  Node: Code Gen Options,  Next: Environment Variables,  Prev: Submodel Options,  Up: Invoking GCC
  619. Options for Code Generation Conventions
  620. =======================================
  621.    These machine-independent options control the interface conventions
  622. used in code generation.
  623.    Most of them have both positive and negative forms; the negative form
  624. of `-ffoo' would be `-fno-foo'.  In the table below, only one of the
  625. forms is listed--the one which is not the default.  You can figure out
  626. the other form by either removing `no-' or adding it.
  627. `-fpcc-struct-return'
  628.      Return "short" `struct' and `union' values in memory like longer
  629.      ones, rather than in registers.  This convention is less
  630.      efficient, but it has the advantage of allowing intercallability
  631.      between GNU CC-compiled files and files compiled with other
  632.      compilers.
  633.      The precise convention for returning structures in memory depends
  634.      on the target configuration macros.
  635.      Short structures and unions are those whose size and alignment
  636.      match that of some integer type.
  637. `-freg-struct-return'
  638.      Use the convention that `struct' and `union' values are returned
  639.      in registers when possible.  This is more efficient for small
  640.      structures than `-fpcc-struct-return'.
  641.      If you specify neither `-fpcc-struct-return' nor its contrary
  642.      `-freg-struct-return', GNU CC defaults to whichever convention is
  643.      standard for the target.  If there is no standard convention, GNU
  644.      CC defaults to `-fpcc-struct-return', except on targets where GNU
  645.      CC is the principal compiler.  In those cases, we can choose the
  646.      standard, and we chose the more efficient register return
  647.      alternative.
  648. `-fshort-enums'
  649.      Allocate to an `enum' type only as many bytes as it needs for the
  650.      declared range of possible values.  Specifically, the `enum' type
  651.      will be equivalent to the smallest integer type which has enough
  652.      room.
  653. `-fshort-double'
  654.      Use the same size for `double' as for `float'.
  655. `-fshared-data'
  656.      Requests that the data and non-`const' variables of this
  657.      compilation be shared data rather than private data.  The
  658.      distinction makes sense only on certain operating systems, where
  659.      shared data is shared between processes running the same program,
  660.      while private data exists in one copy per process.
  661. `-fno-common'
  662.      Allocate even uninitialized global variables in the bss section of
  663.      the object file, rather than generating them as common blocks.
  664.      This has the effect that if the same variable is declared (without
  665.      `extern') in two different compilations, you will get an error
  666.      when you link them.  The only reason this might be useful is if
  667.      you wish to verify that the program will work on other systems
  668.      which always work this way.
  669. `-fno-ident'
  670.      Ignore the `#ident' directive.
  671. `-fno-gnu-linker'
  672.      Do not output global initializations (such as C++ constructors and
  673.      destructors) in the form used by the GNU linker (on systems where
  674.      the GNU linker is the standard method of handling them).  Use this
  675.      option when you want to use a non-GNU linker, which also requires
  676.      using the `collect2' program to make sure the system linker
  677.      includes constructors and destructors.  (`collect2' is included in
  678.      the GNU CC distribution.)  For systems which *must* use
  679.      `collect2', the compiler driver `gcc' is configured to do this
  680.      automatically.
  681. `-finhibit-size-directive'
  682.      Don't output a `.size' assembler directive, or anything else that
  683.      would cause trouble if the function is split in the middle, and the
  684.      two halves are placed at locations far apart in memory.  This
  685.      option is used when compiling `crtstuff.c'; you should not need to
  686.      use it for anything else.
  687. `-fverbose-asm'
  688.      Put extra commentary information in the generated assembly code to
  689.      make it more readable.  This option is generally only of use to
  690.      those who actually need to read the generated assembly code
  691.      (perhaps while debugging the compiler itself).
  692. `-fvolatile'
  693.      Consider all memory references through pointers to be volatile.
  694. `-fvolatile-global'
  695.      Consider all memory references to extern and global data items to
  696.      be volatile.
  697. `-fpic'
  698.      Generate position-independent code (PIC) suitable for use in a
  699.      shared library, if supported for the target machine.  Such code
  700.      accesses all constant addresses through a global offset table
  701.      (GOT).  If the GOT size for the linked executable exceeds a
  702.      machine-specific maximum size, you get an error message from the
  703.      linker indicating that `-fpic' does not work; in that case,
  704.      recompile with `-fPIC' instead.  (These maximums are 16k on the
  705.      m88k, 8k on the Sparc, and 32k on the m68k and RS/6000.  The 386
  706.      has no such limit.)
  707.      Position-independent code requires special support, and therefore
  708.      works only on certain machines.  For the 386, GNU CC supports PIC
  709.      for System V but not for the Sun 386i.  Code generated for the IBM
  710.      RS/6000 is always position-independent.
  711.      The GNU assembler does not fully support PIC.  Currently, you must
  712.      use some other assembler in order for PIC to work.  We would
  713.      welcome volunteers to upgrade GAS to handle this; the first part
  714.      of the job is to figure out what the assembler must do differently.
  715. `-fPIC'
  716.      If supported for the target machine, emit position-independent
  717.      code, suitable for dynamic linking and avoiding any limit on the
  718.      size of the global offset table.  This option makes a difference
  719.      on the m68k, m88k and the Sparc.
  720.      Position-independent code requires special support, and therefore
  721.      works only on certain machines.
  722. `-ffixed-REG'
  723.      Treat the register named REG as a fixed register; generated code
  724.      should never refer to it (except perhaps as a stack pointer, frame
  725.      pointer or in some other fixed role).
  726.      REG must be the name of a register.  The register names accepted
  727.      are machine-specific and are defined in the `REGISTER_NAMES' macro
  728.      in the machine description macro file.
  729.      This flag does not have a negative form, because it specifies a
  730.      three-way choice.
  731. `-fcall-used-REG'
  732.      Treat the register named REG as an allocatable register that is
  733.      clobbered by function calls.  It may be allocated for temporaries
  734.      or variables that do not live across a call.  Functions compiled
  735.      this way will not save and restore the register REG.
  736.      Use of this flag for a register that has a fixed pervasive role in
  737.      the machine's execution model, such as the stack pointer or frame
  738.      pointer, will produce disastrous results.
  739.      This flag does not have a negative form, because it specifies a
  740.      three-way choice.
  741. `-fcall-saved-REG'
  742.      Treat the register named REG as an allocatable register saved by
  743.      functions.  It may be allocated even for temporaries or variables
  744.      that live across a call.  Functions compiled this way will save
  745.      and restore the register REG if they use it.
  746.      Use of this flag for a register that has a fixed pervasive role in
  747.      the machine's execution model, such as the stack pointer or frame
  748.      pointer, will produce disastrous results.
  749.      A different sort of disaster will result from the use of this flag
  750.      for a register in which function values may be returned.
  751.      This flag does not have a negative form, because it specifies a
  752.      three-way choice.
  753. `+e0'
  754. `+e1'
  755.      Control whether virtual function definitions in classes are used to
  756.      generate code, or only to define interfaces for their callers.
  757.      (C++ only).
  758.      These options are provided for compatibility with `cfront' 1.x
  759.      usage; the recommended alternative GNU C++ usage is in flux.
  760.      *Note Declarations and Definitions in One Header: C++ Interface.
  761.      With `+e0', virtual function definitions in classes are declared
  762.      `extern'; the declaration is used only as an interface
  763.      specification, not to generate code for the virtual functions (in
  764.      this compilation).
  765.      With `+e1', G++ actually generates the code implementing virtual
  766.      functions defined in the code, and makes them publicly visible.
  767. File: gcc.info,  Node: Environment Variables,  Next: Running Protoize,  Prev: Code Gen Options,  Up: Invoking GCC
  768. Environment Variables Affecting GNU CC
  769. ======================================
  770.    This section describes several environment variables that affect how
  771. GNU CC operates.  They work by specifying directories or prefixes to use
  772. when searching for various kinds of files.
  773.    Note that you can also specify places to search using options such as
  774. `-B', `-I' and `-L' (*note Directory Options::.).  These take
  775. precedence over places specified using environment variables, which in
  776. turn take precedence over those specified by the configuration of GNU
  777. CC.  *Note Driver::.
  778. `TMPDIR'
  779.      If `TMPDIR' is set, it specifies the directory to use for temporary
  780.      files.  GNU CC uses temporary files to hold the output of one
  781.      stage of compilation which is to be used as input to the next
  782.      stage: for example, the output of the preprocessor, which is the
  783.      input to the compiler proper.
  784. `GCC_EXEC_PREFIX'
  785.      If `GCC_EXEC_PREFIX' is set, it specifies a prefix to use in the
  786.      names of the subprograms executed by the compiler.  No slash is
  787.      added when this prefix is combined with the name of a subprogram,
  788.      but you can specify a prefix that ends with a slash if you wish.
  789.      If GNU CC cannot find the subprogram using the specified prefix, it
  790.      tries looking in the usual places for the subprogram.
  791.      The default value of `GCC_EXEC_PREFIX' is
  792.      `PREFIX/lib/gcc-lib/MACHINE/VERSION/' where PREFIX is the value of
  793.      `prefix' when you ran the `configure' script and MACHINE and
  794.      VERSION are the configuration name and version number of GNU CC,
  795.      respectively.
  796.      Other prefixes specified with `-B' take precedence over this
  797.      prefix.
  798.      This prefix is also used for finding files such as `crt0.o' that
  799.      are used for linking.
  800.      In addition, the prefix is used in an unusual way in finding the
  801.      directories to search for header files.  For each of the standard
  802.      directories whose name normally begins with
  803.      `/usr/local/lib/gcc-lib' (more precisely, with the value of
  804.      `GCC_INCLUDE_DIR'), GNU CC tries replacing that beginning with the
  805.      specified prefix to produce an alternate directory name.  Thus,
  806.      with `-Bfoo/', GNU CC will search `foo/bar' where it would
  807.      normally search `/usr/local/lib/bar'.  These alternate directories
  808.      are searched first; the standard directories come next.
  809. `COMPILER_PATH'
  810.      The value of `COMPILER_PATH' is a colon-separated list of
  811.      directories, much like `PATH'.  GNU CC tries the directories thus
  812.      specified when searching for subprograms, if it can't find the
  813.      subprograms using `GCC_EXEC_PREFIX'.
  814. `LIBRARY_PATH'
  815.      The value of `LIBRARY_PATH' is a colon-separated list of
  816.      directories, much like `PATH'.  GNU CC tries the directories thus
  817.      specified when searching for special linker files, if it can't
  818.      find them using `GCC_EXEC_PREFIX'.  Linking using GNU CC also uses
  819.      these directories when searching for ordinary libraries for the
  820.      `-l' option (but directories specified with `-L' come first).
  821. `C_INCLUDE_PATH'
  822. `CPLUS_INCLUDE_PATH'
  823. `OBJC_INCLUDE_PATH'
  824.      These environment variables pertain to particular languages.  Each
  825.      variable's value is a colon-separated list of directories, much
  826.      like `PATH'.  When GNU CC searches for header files, it tries the
  827.      directories listed in the variable for the language you are using,
  828.      after the directories specified with `-I' but before the standard
  829.      header file directories.
  830. `DEPENDENCIES_OUTPUT'
  831.      If this variable is set, its value specifies how to output
  832.      dependencies for Make based on the header files processed by the
  833.      compiler.  This output looks much like the output from the `-M'
  834.      option (*note Preprocessor Options::.), but it goes to a separate
  835.      file, and is in addition to the usual results of compilation.
  836.      The value of `DEPENDENCIES_OUTPUT' can be just a file name, in
  837.      which case the Make rules are written to that file, guessing the
  838.      target name from the source file name.  Or the value can have the
  839.      form `FILE TARGET', in which case the rules are written to file
  840.      FILE using TARGET as the target name.
  841. File: gcc.info,  Node: Running Protoize,  Prev: Environment Variables,  Up: Invoking GCC
  842. Running Protoize
  843. ================
  844.    The program `protoize' is an optional part of GNU C.  You can use it
  845. to add prototypes to a program, thus converting the program to ANSI C
  846. in one respect.  The companion program `unprotoize' does the reverse:
  847. it removes argument types from any prototypes that are found.
  848.    When you run these programs, you must specify a set of source files
  849. as command line arguments.  The conversion programs start out by
  850. compiling these files to see what functions they define.  The
  851. information gathered about a file FOO is saved in a file named `FOO.X'.
  852.    After scanning comes actual conversion.  The specified files are all
  853. eligible to be converted; any files they include (whether sources or
  854. just headers) are eligible as well.
  855.    But not all the eligible files are converted.  By default,
  856. `protoize' and `unprotoize' convert only source and header files in the
  857. current directory.  You can specify additional directories whose files
  858. should be converted with the `-d DIRECTORY' option.  You can also
  859. specify particular files to exclude with the `-x FILE' option.  A file
  860. is converted if it is eligible, its directory name matches one of the
  861. specified directory names, and its name within the directory has not
  862. been excluded.
  863.    Basic conversion with `protoize' consists of rewriting most function
  864. definitions and function declarations to specify the types of the
  865. arguments.  The only ones not rewritten are those for varargs functions.
  866.    `protoize' optionally inserts prototype declarations at the
  867. beginning of the source file, to make them available for any calls that
  868. precede the function's definition.  Or it can insert prototype
  869. declarations with block scope in the blocks where undeclared functions
  870. are called.
  871.    Basic conversion with `unprotoize' consists of rewriting most
  872. function declarations to remove any argument types, and rewriting
  873. function definitions to the old-style pre-ANSI form.
  874.    Both conversion programs print a warning for any function
  875. declaration or definition that they can't convert.  You can suppress
  876. these warnings with `-q'.
  877.    The output from `protoize' or `unprotoize' replaces the original
  878. source file.  The original file is renamed to a name ending with
  879. `.save'.  If the `.save' file already exists, then the source file is
  880. simply discarded.
  881.    `protoize' and `unprotoize' both depend on GNU CC itself to scan the
  882. program and collect information about the functions it uses.  So
  883. neither of these programs will work until GNU CC is installed.
  884.    Here is a table of the options you can use with `protoize' and
  885. `unprotoize'.  Each option works with both programs unless otherwise
  886. stated.
  887. `-B DIRECTORY'
  888.      Look for the file `SYSCALLS.c.X' in DIRECTORY, instead of the
  889.      usual directory (normally `/usr/local/lib').  This file contains
  890.      prototype information about standard system functions.  This option
  891.      applies only to `protoize'.
  892. `-c COMPILATION-OPTIONS'
  893.      Use  COMPILATION-OPTIONS as the options when running `gcc' to
  894.      produce the `.X' files.  The special option `-aux-info' is always
  895.      passed in addition, to tell `gcc' to write a `.X' file.
  896.      Note that the compilation options must be given as a single
  897.      argument to `protoize' or `unprotoize'.  If you want to specify
  898.      several `gcc' options, you must quote the entire set of
  899.      compilation options to make them a single word in the shell.
  900.      There are certain `gcc' arguments that you cannot use, because they
  901.      would produce the wrong kind of output.  These include `-g', `-O',
  902.      `-c', `-S', and `-o' If you include these in the
  903.      COMPILATION-OPTIONS, they are ignored.
  904.      Rename files to end in `.C' instead of `.c'.  This is convenient
  905.      if you are converting a C program to C++.  This option applies
  906.      only to `protoize'.
  907.      Add explicit global declarations.  This means inserting explicit
  908.      declarations at the beginning of each source file for each function
  909.      that is called in the file and was not declared.  These
  910.      declarations precede the first function definition that contains a
  911.      call to an undeclared function.  This option applies only to
  912.      `protoize'.
  913. `-i STRING'
  914.      Indent old-style parameter declarations with the string STRING.
  915.      This option applies only to `protoize'.
  916.      `unprotoize' converts prototyped function definitions to old-style
  917.      function definitions, where the arguments are declared between the
  918.      argument list and the initial `{'.  By default, `unprotoize' uses
  919.      five spaces as the indentation.  If you want to indent with just
  920.      one space instead, use `-i " "'.
  921.      Keep the `.X' files.  Normally, they are deleted after conversion
  922.      is finished.
  923.      Add explicit local declarations.  `protoize' with `-l' inserts a
  924.      prototype declaration for each function in each block which calls
  925.      the function without any declaration.  This option applies only to
  926.      `protoize'.
  927.      Make no real changes.  This mode just prints information about the
  928.      conversions that would have been done without `-n'.
  929.      Make no `.save' files.  The original files are simply deleted.
  930.      Use this option with caution.
  931. `-p PROGRAM'
  932.      Use the program PROGRAM as the compiler.  Normally, the name `gcc'
  933.      is used.
  934.      Work quietly.  Most warnings are suppressed.
  935.      Print the version number, just like `-v' for `gcc'.
  936.    If you need special compiler options to compile one of your program's
  937. source files, then you should generate that file's `.X' file specially,
  938. by running `gcc' on that source file with the appropriate options and
  939. the option `-aux-info'.  Then run `protoize' on the entire set of
  940. files.  `protoize' will use the existing `.X' file because it is newer
  941. than the source file.  For example:
  942.      gcc -Dfoo=bar file1.c -aux-info
  943.      protoize *.c
  944. You need to include the special files along with the rest in the
  945. `protoize' command, even though their `.X' files already exist, because
  946. otherwise they won't get converted.
  947.    *Note Protoize Caveats::, for more information on how to use
  948. `protoize' successfully.
  949.